home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 71.zip / BS1 part 71 / SuperPlay_d1.adf / Install SPlay < prev    next >
Text File  |  1993-07-12  |  839b  |  46 lines

  1. ; Installer for Super Play
  2.  
  3. (
  4.    ; Ask where to install it...
  5.    (set @default-dest
  6.       (askdir
  7.          (prompt "Select destination directory")
  8.          (help "")
  9.          (default "Work:SPlay")
  10.       )
  11.    )
  12.  
  13.    (copyfiles
  14.       (prompt "Copying SPlay")
  15.       (help "")
  16.       (source "SPlay.1:splay")
  17.       (dest @default-dest)
  18.       (all)
  19.    )
  20.  
  21.    (copyfiles
  22.       (prompt "Copying graphics baby")
  23.       (help "")
  24.       (source "SPlay.2:graphics")
  25.       (dest (tackon @default-dest "graphics"))
  26.       (all)
  27.    )
  28.  
  29.    (copyfiles
  30.       (prompt "Copying sounds")
  31.       (help "")
  32.       (source "SPlay.2:sound")
  33.       (dest (tackon @default-dest "sound"))
  34.       (all)
  35.    )
  36.  
  37.    (copyfiles
  38.       (prompt "Copying graphics STAR-WARS")
  39.       (help "")
  40.       (source "SPlay.3:")
  41.       (dest (tackon @default-dest "graphics"))
  42.       (all)
  43.    )
  44. )
  45.  
  46.